iT邦幫忙

2023 iThome 鐵人賽

DAY 23
0
自我挑戰組

C語言精讀研習系列 第 23

確認變數的生命週期

  • 分享至 

  • xImage
  •  

完整程式碼

#include <stdio.h>

int a = 0;

void func(void) {
    int b = 0;
    static int c = 0;
    
    printf("變數a為%d 變數b為%d 變數c為%d。\n", a, b, c);
    
    a++;
    b++;
    c++;
}

int main(void) {
    for (int i = 0; i < 5; i++) {
        func();
    }
    return 0;
}

輸出結果
https://ithelp.ithome.com.tw/upload/images/20231005/20160744eUY38sMHZS.png

參考來源:最新C語言程式設計實例入門<增訂第三版>


上一篇
sizeof與陣列元素位置關係-C語言證照題庫
下一篇
endl換行練習 C++
系列文
C語言精讀研習47
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言